home *** CD-ROM | disk | FTP | other *** search
- /* TasksAndErrors.h: Task and error notification routines for ProjectDrag
- *
- * A set of applets for drag and drop source control by Tim Maroney.
- * See develop, issue 23 for details.
- *
- * Built on DropShell by Leonard Rosenthol, Stephan Somogyi, and Marshall Clow,
- * and using the MoreFiles utilities by Jim Luther.
- *
- * This software is free, but don't modify and redistribute it without
- * changing the status window to indicate your name and your changes!
- */
-
- #ifndef __TASKSANDERRORS__
- #define __TASKSANDERRORS__
-
- void TaskStart(short strListID, short index, StringPtr param1, StringPtr param2,
- StringPtr param3, StringPtr param4);
- void TaskDone(void);
- void PopAllTasks(void);
-
- OSErr RaiseErrorNumber(OSErr err);
- void RaiseErrorString(short strListID, short index,
- StringPtr param1, StringPtr param2,
- StringPtr param3, StringPtr param4);
- void SetStatusMessage(StringPtr message);
-
- void PersistentAnswer(short strListID, short strIndex, ConfirmResponse answer);
- Boolean GetPersistentAnswer(short strListID, short strIndex, ConfirmResponse *answer);
-
- #endif
-